home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Meshwriter / lightwave.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  1.9 KB  |  54 lines

  1. /*
  2. **      $VER: lightwave.h 1.00 (13.02.1999)
  3. **
  4. **      Creation date : 17.11.1998
  5. **
  6. **      Description       :
  7. **         Standart saver module for meshwriter.library.
  8. **         Saves the mesh as Lightwave file.
  9. **
  10. **
  11. **      Written by Stephan Bielmann
  12. **
  13. */
  14.  
  15. #ifndef INCLUDE_LIGHTWAVE_H
  16. #define INCLUDE_LIGHTWAVE_H
  17.  
  18. /*************************** Includes *******************************/
  19.  
  20. /*
  21. ** Amiga includes
  22. */
  23. #include <dos/dos.h>
  24.  
  25. /*
  26. ** Project includes
  27. */
  28. #include "meshwriter_private.h"
  29.  
  30. /*************************** Functions ******************************/
  31.  
  32. /********************************************************************\
  33. *                                                                    *
  34. * Name         : write3LWOB                                          *
  35. *                                                                    *
  36. * Description  : Writes a standart lightwave object binary file.     *
  37. *                Revision date : 28.11.1994                          *
  38. *                                                                    *
  39. * Arguments    : lwobfile  IN : An already opened file stream.       *
  40. *                mesh      IN : Pointer to the mesh.                 *
  41. *                                                                    *
  42. * Return Value : RCNOERROR                                           *
  43. *                RCWRITEDATA                                         *
  44. *                RCVERTEXOVERFLOW                                    *
  45. *                                                                    *
  46. * Comment      :                                                     *
  47. *                                                                    *
  48. \********************************************************************/
  49. extern ULONG write3LWOB(BPTR lwobfile, TOCLMesh *mesh);
  50.  
  51. #endif
  52.  
  53. /************************* End of file ******************************/
  54.